home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr52 / clpshare.zip / SHARE.DOC < prev    next >
Text File  |  1993-04-20  |  706b  |  18 lines

  1. The SHARE.OBJ file was developed by Scott Hansen to be used with Clipper
  2. programs on Novell Netware LANS where the user has created a new file in
  3. the application, or where an index has been rebuilt from scratch.  When
  4. either of the two aforementioned procedures have occured, the resulting
  5. new file will possess a NON-shareable file attribute.  To update the
  6. attribiute to SHAREABLE the user can execute the following:
  7.     RUN flag THEFILE.DBF SRW >NUL    -or- link in the SHARE.OBJ file
  8. and execute the following:
  9.     USE EMPLOYEE
  10.     INDEX ON NAME TO EMP_NAME
  11.     IF SHARE("EMP_NAME.NTX")
  12.        ? "file flagged as shareable"
  13.       else
  14.        ? "File not shareable"
  15.     ENDIF
  16.     USE
  17.  
  18.